home *** CD-ROM | disk | FTP | other *** search
/ Champak 40 / Vol 40.iso / games / whomp.swf / scripts / DefineButton2_349 / BUTTONCONDACTION on(keyPress Space).as
Encoding:
Text File  |  2007-04-20  |  240 b   |  14 lines

  1. on(keyPress "<Space>"){
  2.    trace(gClear);
  3.    if(gClear == false)
  4.    {
  5.       _root.section = 3;
  6.    }
  7.    else if(gClear == true)
  8.    {
  9.       _root.section = 1;
  10.       gClear = false;
  11.    }
  12.    gotoAndPlay(_root._currentFrame + 1);
  13. }
  14.